#app-bank-history {
	background-color: #fefefe;
}

#app-bank-history>.app-inner {
	color: #535353;
	display: block;
	padding: 0;
}

#app-bank-history .app-inner {
	height: 400px;
}

#app-bank-history .bank-header {
	display: flex;
	align-items: center;
	padding: 15px;
	border-bottom: 1px solid #e2e2e2;
	margin-bottom: 25px;
	background-color: #fefefe;
}

#app-bank-history .bank-header>h2 {
	flex: 1;
	text-align: center;
	margin: 0;
	padding: 0;
}

#app-bank-history .bank-input-div {
	display: flex;
	flex-direction: column;
	margin: 5px 10px;
}

#app-bank-history .bank-input-div>input {
	color: #232323;
	border: none;
	outline: none;
	font-size: 1.4em;
	padding: 4px 0px;
	border-bottom: 1px solid #ddd;
}

#app-bank-history .bank-input-div>input.selected {
	border-bottom: 1px solid #1da1f2;
}

#app-bank-history .button-container {
	position: absolute;
	bottom: 0;
	margin-bottom: 5px;
	width: 100%;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
}

#app-bank-history .button {
	width: calc(100% - 20px);
	height: 40px;
	line-height: 40px;
	text-align: center;
	background-color: #1da1f2;
	color: #FFF;
	bottom: 0;
	margin: 5px;
	border-radius: 4px;
}

#app-bank-history .button.selected {
	background-color: #325e79;
}

/* Feed */

#bankHistoryFeed {
    font-size: 0.9em;
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #fafafa;
}

#bankHistoryFeed > .bankHistoryFeedHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 8px;
    border-bottom: 1px solid #ddd;
    background-color: #fefefe;
    color: #1da1f2;
}

#bankHistoryFeed > .bankHistoryFeedHeader span {
    color: #232323;
}

#bankHistoryFeed > .bankHistoryFeedHeader > img:last-child {
    margin-right: 0;
}

#app-bank-history li.historyList.active {
	font-weight: bolder;
	color: black;
}

#bankHistoryFeedList {
    overflow: hidden;
    color: #575c60;
    list-style: none;
    margin: 0;
    padding: 0;
    height: calc(100% - 48px);
}

#bankHistoryFeedList > li {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #e6e6e6;
}

#bankHistoryFeedList > li b {
	color: #1da1f2;
	font-weight: 300;
}

#bankHistoryFeedList > li .twitterHolder {
    flex: 1;

    margin-left: 5%;
}

#bankHistoryFeedList > li .twitterHolderHeader {
    display: flex;

    font-size: 13px;
    font-weight: 600;
}

#bankHistoryFeedList > li .twitterHolder .timeFormat {
    font-weight: 400;
    font-size: 10px;
}

#bankHistoryFeedList > li .twitterHolderHeader .red {
    color: red;
}
#bankHistoryFeedList > li .twitterHolderHeader .green {
    color: green;
}
#bankHistoryFeedList > li .twitterHolderHeader .green::before {
    content: "+";
}

#bankHistoryFeedList .image {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	line-height: 41px;
	font-size: 1.3em;
	background: linear-gradient(to bottom, rgba(12, 12, 12, .35), rgba(12, 12, 12, .5));
	color: #fefefe;
}